home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 8_2.lha / 8_2 / makefile < prev    next >
Makefile  |  1993-08-08  |  247b  |  17 lines

  1. C= CC -I. -I../../CC
  2. RROR= ../../error.o
  3.  
  4. ll: tst
  5.  
  6. st: tst.c 8_2a.c 8_2b.c 8_2c.c 8_2d.c
  7. $(CC) tst.c -o tst $(ERROR)
  8.  
  9. MP= tst.cmp
  10. UT= tst.out
  11.  
  12. st.out: tst tst.in ; tst < tst.in > tst.out
  13.  
  14. est: all $(CMP) $(OUT)
  15. cmp tst.out tst.cmp
  16. @echo test done
  17.